home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / General / GCC 1.37.1r15 / Tests / fnptr.c < prev    next >
C/C++ Source or Header  |  1993-04-12  |  97b  |  11 lines

  1. void f();
  2.  
  3. void (*fp)() = f;
  4.  
  5. /* returns 0, but should return 1 */
  6.  
  7. main()
  8. {
  9.     return *fp == f;
  10. }
  11.